home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / PickOne / headers / PickOne_window.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  755 b   |  32 lines  |  [TEXT/CWIE]

  1. /*  window.h                                                                            
  2.  
  3.     Michael Bishop - August 21 1996                                                    
  4.     Nick Thompson
  5.     (c)1994-96 Apple Computer Inc., All Rights Reserved                                
  6.  
  7. */
  8. #ifndef _BP_WINDOW_H_
  9. #define    _BP_WINDOW_H_
  10.  
  11. #include <QuickDraw.h>
  12.  
  13. #include    "PickOne_document.h"
  14.  
  15.  
  16. enum {
  17.     kWindowResID = 6347
  18. } ;    
  19.  
  20. WindowPtr    Window_New(void) ;
  21. void        Window_Dispose(WindowPtr theWindow) ;
  22.  
  23. DocumentHdl Window_GetDocument( WindowPtr theWindow);
  24. int            Window_SetDocument( WindowPtr theWindow,  DocumentHdl theDocument);
  25. WindowPtr    Window_GetNextWindow(WindowPtr theWindow);
  26.  
  27. void        Window_Update( WindowPtr window );
  28. void        Window_Activate(WindowPtr theWindow, short activate);
  29. void        Window_DoContent (WindowPtr theWindow, EventRecord *event);
  30. void        Window_DestroyAll(void);
  31.  
  32. #endif